home *** CD-ROM | disk | FTP | other *** search
-
-
-
- VVVVkkkkTTTTeeeexxxxttttIIIIOOOO((((3333xxxx)))) VVVVkkkkTTTTeeeexxxxttttIIIIOOOO((((3333xxxx))))
-
-
-
- NNNNAAAAMMMMEEEE
- VkTextIO - Command-line interface text component
-
- IIIINNNNHHHHEEEERRRRIIIITTTTSSSS FFFFRRRROOOOMMMM
- VkComponent : VkCallbackObject :
-
- HHHHEEEEAAAADDDDEEEERRRR FFFFIIIILLLLEEEE
- #include <Vk/VkTextIO.h>
-
- PPPPUUUUBBBBLLLLIIIICCCC PPPPRRRROOOOTTTTOOOOCCCCOOOOLLLL SSSSUUUUMMMMMMMMAAAARRRRYYYY
- CCCCoooonnnnssssttttrrrruuuuccccttttoooorrrr////DDDDeeeessssttttrrrruuuuccccttttoooorrrr
- VkTextIO(const char* name, Widget parent, const char* prompt = NULL);
- virtual void ~VkTextIO(void);
-
-
- DDDDiiiissssppppllllaaaayyyy FFFFuuuunnnnccccttttiiiioooonnnnssss
- void clearHistory(void);
- virtual void outputString(char* str,
- Boolean skipInput = True);
- void outputChar(char ch, Boolean skipInput);
-
-
- CCCCoooonnnnttttrrrroooollll FFFFuuuunnnnccccttttiiiioooonnnnssss
- void disableRedisplay(void);
- void enableRedisplay(void);
-
-
- AAAAcccccccceeeessssssss FFFFuuuunnnnccccttttiiiioooonnnnssss
- Widget textWidget(void);
- Boolean activated(void);
- void activate(void);
- void deactivate(void);
-
-
- CCCCLLLLAAAASSSSSSSS DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
- The VkTextIO class provides a text widget that the user interacts with as
- if they were in a shell. New entries appear at the end of the text
- widget, and return sends a line to the controlling application.
-
-
-
- FFFFUUUUNNNNCCCCTTTTIIIIOOOONNNN DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNNSSSS
- VVVVkkkkTTTTeeeexxxxttttIIIIOOOO(((())))
- VkTextIO(const char* name, Widget parent,
- const char* prompt = NULL);
- virtual void ~VkTextIO(void);
-
-
- Creates a Motif scrolled text widget. The first argument is the
- name of the text widget, the second is the parent, and the third is
- the prompt string displayed at the beginning of each line.
-
-
-
-
- PPPPaaaaggggeeee 1111
-
-
-
-
-
-
- VVVVkkkkTTTTeeeexxxxttttIIIIOOOO((((3333xxxx)))) VVVVkkkkTTTTeeeexxxxttttIIIIOOOO((((3333xxxx))))
-
-
-
- cccclllleeeeaaaarrrrHHHHiiiissssttttoooorrrryyyy(((())))
- void clearHistory(void);
-
-
- Since the text widget contents cannot be edited by the user except
- for the current line, the text contents grows without bound. This
- method clears the old history of the text widget.
-
- oooouuuuttttppppuuuuttttSSSSttttrrrriiiinnnngggg(((())))
- virtual void outputString(char* str, Boolean skipInput);
-
-
- Sends a line of output to the text widget.
-
- oooouuuuttttppppuuuuttttCCCChhhhaaaarrrr(((())))
- void outputChar(char ch, Boolean skipInput);
-
-
- Sends a character to the text widget.
-
- ddddiiiissssaaaabbbblllleeeeRRRReeeeddddiiiissssppppllllaaaayyyy(((())))
- void disableRedisplay(void);
-
-
- Turns of XmText display. This is useful when you have a lot of
- output to send in chunks, and don't want the overhead of text widget
- updating between each incremental output.
-
- eeeennnnaaaabbbblllleeeeRRRReeeeddddiiiissssppppllllaaaayyyy(((())))
- void enableRedisplay(void);
-
-
- Turns on and update the XmText widget. Call this method after
- you're done calling outputString() or outputChar().
-
- tttteeeexxxxttttWWWWiiiiddddggggeeeetttt(((())))
- Widget textWidget(void);
-
-
- Returns the actual text widget of the component. The baseWidget()
- method returns the top-level scrolled window widget.
-
- aaaaccccttttiiiivvvvaaaatttteeeedddd(((())))
- Boolean activated(void);
-
-
- Indicates whether the component is active (sensitive).
-
- aaaaccccttttiiiivvvvaaaatttteeee(((())))
- void activate(void);
-
-
-
-
-
- PPPPaaaaggggeeee 2222
-
-
-
-
-
-
- VVVVkkkkTTTTeeeexxxxttttIIIIOOOO((((3333xxxx)))) VVVVkkkkTTTTeeeexxxxttttIIIIOOOO((((3333xxxx))))
-
-
-
- Makes the component sensitive.
-
- ddddeeeeaaaaccccttttiiiivvvvaaaatttteeee(((())))
- void deactivate(void);
-
-
- Makes the component insensitive.
-
- tttteeeexxxxttttCCCCaaaallllllllbbbbaaaacccckkkk
- static const const char* textCallback;
-
-
- A callback function for detecting a new input line in the command-
- line text widget or the user pressing CTRL-c. The callData argument
- should be cast to a (VkTextIOCallback *).
-
- IIIINNNNHHHHEEEERRRRIIIITTTTEEEEDDDD MMMMEEEEMMMMBBBBEEEERRRR FFFFUUUUNNNNCCCCTTTTIIIIOOOONNNNSSSS
- IIIInnnnhhhheeeerrrriiiitttteeeedddd ffffrrrroooommmm VVVVkkkkCCCCoooommmmppppoooonnnneeeennnntttt
- className(), installDestroyHandler(), removeDestroyHandler(),
- widgetDestroyed(), afterRealizeHook(), setDefaultResources(),
- getResources(), VkComponent(), VkComponent(), ~VkComponent(),
- hide(), realize(), manage(), unmanage(), name(), baseWidget(),
- okToQuit(), isComponent(), *(), _name, _baseWidget, _w,
- deleteCallback,
-
-
- IIIInnnnhhhheeeerrrriiiitttteeeedddd ffffrrrroooommmm VVVVkkkkCCCCaaaallllllllbbbbaaaacccckkkkOOOObbbbjjjjeeeecccctttt
- callCallbacks(), VkCallbackObject(), ~VkCallbackObject(),
- addCallback(), addCallback(), removeCallback(), removeCallback(),
- removeAllCallbacks(), removeAllCallbacks(), hasCallbacks(),
- cloneCallbacks(), cloneCallback(), cloneCallback(),
-
-
- KKKKNNNNOOOOWWWWNNNN DDDDEEEERRRRIIIIVVVVEEEEDDDD CCCCLLLLAAAASSSSSSSSEEEESSSS
- VkForkIO
-
- SSSSEEEEEEEE AAAALLLLSSSSOOOO
- VkComponent, VkCallbackObject, VkTextIO,
- _V_i_e_w_K_i_t _P_r_o_g_r_a_m_m_e_r'_s _G_u_i_d_e
- _T_h_e _X _W_i_n_d_o_w _S_y_s_t_e_m, DEC Press, Bob Sheifler and Jim Gettys
- _T_h_e _X _W_i_n_d_o_w _S_y_s_t_e_m _T_o_o_l_k_i_t, DEC Press, Paul Asente and Ralph Swick
- _T_h_e _O_S_F/_M_o_t_i_f _P_r_o_g_r_a_m_m_e_r_s _R_e_f_e_r_e_n_c_e, Prentice Hall, OSF
-
-
-
-
-
-
-
-
-
-
-
-
-
- PPPPaaaaggggeeee 3333
-
-
-
-